951c786de6ee4bc03ba78e8d2c5519d72a13171f,mapillary/src/org/openstreetmap/josm/plugins/mapillary/cache/MapillaryCache.java,MapillaryCache,MapillaryCache,#String#Type#,45

Before Change


   *          FULL_IMAGE).
   */
  public MapillaryCache(String key, Type type) {
    super(MapillaryPlugin.getCache(), 50000, 50000, new HashMap<>());
    String k = null;
    URL u = null;
    if (key != null && type != null) {
      try {

After Change


   *          FULL_IMAGE).
   */
  public MapillaryCache(String key, Type type) {
    this(MapillaryPlugin.getCache(), key, type);
  }

  protected MapillaryCache(CacheAccess<String, BufferedImageCacheEntry> cache, String key, Type type) {
    super(cache, 50000, 50000, new HashMap<>());